home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12src.lzh / Runtime / System / Devices / Console.asm next >
Assembly Source File  |  1991-03-13  |  464b  |  29 lines

  1. *
  2. *    Console.asm
  3. *    These routines just calls the two Console.device library-like
  4. *    routines.
  5.  
  6.     SECTION    PCQ_Runtime,CODE
  7.  
  8.     XREF    _ConsoleBase
  9.     XREF    _LVORawKeyConvert
  10.     XREF    _LVOCDInputHandler
  11.  
  12.     XDEF    _RawKeyConvert
  13. _RawKeyConvert
  14.     move.l    16(sp),a0
  15.     movem.l    8(sp),d1/a1
  16.     move.l    4(sp),a2
  17.     move.l    _ConsoleBase,a6
  18.     jmp    _LVORawKeyConvert(a6)
  19.  
  20.     XDEF    _CDInputHandler
  21. _CDInputHandler
  22.     move.l    8(sp),a0
  23.     move.l    4(sp),a1
  24.     move.l    _ConsoleBase,a6
  25.     jmp    _LVOCDInputHandler(a6)
  26.  
  27.     END
  28.  
  29.